home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7020.txt < prev    next >
Text File  |  1994-04-15  |  1KB  |  74 lines

  1. Returns handle to active symbol
  2. definition.
  3.  
  4. ActSymDef : HANDLE;
  5.  
  6. Returns visibility status of layer connected to h.
  7.  
  8. GetLVis(h : Handle) : INTEGER;
  9.  
  10. Returns the current fill background color.
  11.  
  12. FFillBack(VAR Red, Green, Blue : LONGINT);
  13.  
  14. Returns the current fill foreground color.
  15.  
  16. FFillFore(VAR Red, Green, Blue : LONGINT);
  17.  
  18. Returns the current pen background color.
  19.  
  20. FPenBack(VAR Red, Green, Blue : LONGINT);
  21.  
  22. Returns the current pen foreground color.
  23.  
  24. FPenFore(VAR Red, Green, Blue : LONGINT);
  25.  
  26. Returns the current fill pattern for the graphic pen.
  27.  
  28. FPenPat : INTEGER;
  29.  
  30. Returns the current pen size, in mils.
  31.  
  32. FPenSize : INTEGER;
  33.  
  34. Returns the current fill pattern.
  35.  
  36. FFillPat : INTEGER;
  37.  
  38. Returns the current arrowhead.
  39.  
  40. FArrowHead : INTEGER;
  41.  
  42. Returns the current origin location relative to the center of the page.
  43.  
  44. GetOrigin(VAR X, Y : REAL);
  45.  
  46. Returns the object class stored in the object class list specified by Index.
  47.  
  48. ClassList(Index : INTEGER;) : STRING;
  49.  
  50. Returns the number of classes in the current active drawing.
  51.  
  52. ClassNum : INTEGER;
  53.  
  54. Returns the object name stored in the object name list specified by Index.
  55.  
  56. NameList(Index : INTEGER) : STRING;
  57.  
  58. Returns the number of names in the current active drawing.
  59.  
  60. NameNum : INTEGER;
  61.  
  62. Returns the current number of symbols in the library of the active drawing.
  63.  
  64. SymDefNum : INTEGER;
  65.  
  66. Returns the current number of layers in the active drawing.
  67.  
  68. NumLayers : INTEGER;
  69.  
  70. Returns the current file name of the active drawing.
  71.  
  72. GetFName : STRING;
  73.  
  74.